home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / caustic1 < prev    next >
Text File  |  1997-01-21  |  429b  |  26 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3.  
  4. camera { 
  5.   location <0, 15, -40> 
  6.   look_at <-2, 0, 1> 
  7.   angle 10 
  8. }
  9.  
  10. light_source { <10, 20, 10> color White }
  11.  
  12. // lay down a boring floor to view the shadow against
  13.  
  14. plane { y, 0                                           
  15.   pigment { Grey }
  16. }
  17.  
  18. // here's something to have caustics property applied
  19.  
  20. sphere { <0, 3, 0>, 2
  21.   texture {
  22.     Glass3 
  23.     finish { caustics .6 }
  24.   }
  25. }
  26.